HTMLify
index.html
Views: 28 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="ie=edge" /> <link rel="stylesheet" href="style.css" /> <title>Form Validator</title> </head> <body> <!-- Form --> <section class="container"> <form> <div class="input-container"> <input type="text" placeholder="Name*" class="username" id="username" /> <p class="user-msg msg">error message</p> </div> <div class="input-container"> <input type="email" placeholder="Email Address*" class="email" id="email" /> <p class="email-msg msg">error message</p> </div> <div class="input-container"> <input type="password" placeholder="Password*" class="password1" id="password1" /> <p class="password1-msg msg">error message</p> </div> <div class="input-container"> <input type="password" placeholder="Confirm Password*" id="password2" class="password2" /> <p class="password2-msg msg">error message</p> </div> <input type="submit" value="Submit" class="submit" /> <p class="already">Already have an account? <a href="#">Login</a></p> </form> <!-- Image / Content --> <div class="content"> <img src="https://noblewoodgardenstore.ie/wp-content/uploads/2021/12/malvestida-magazine-DMl5gG0yWWY-unsplash-edited.jpg" /> <h1> Shoe <br /> Palace </h1> </div> </section> <!-- <script src="script.js"></script> --> <script src="script.js"></script> </body> </html> |